home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global givTextRegColor, givTextHiliteColor, givState, givLastIndexLine, givCurrIndexLine
- set givLastIndexLine to -1
- set mLine to the mouseLine
- MessagePut("entering QuestionTextBox callback, mouseLine: " & mLine)
- if (mLine = -1) or (mLine >= the number of lines in field "QuestionTextBox") then
- exit
- end if
- if (the mode of givState = #play) and (the activeMonitor of givState = 3) then
- MessagePut("no question text box functionality for this monitor")
- exit
- end if
- if the doubleClick then
- MessagePut("in question text box callback, double-click detected")
- dontPassEvent()
- exit
- end if
- if mLine <> -1 then
- set executeOnce to 0
- set the foreColor of cast "QuestionTextBox" to givTextRegColor
- MessagePut("lines in question text box:" && the number of lines in field "QuestionTextBox")
- repeat while the stillDown or (executeOnce = 0)
- if the mouseCast = the number of cast "QuestionTextBox" then
- if executeOnce = 1 then
- set mLine to the mouseLine
- end if
- if (mLine <> givLastIndexLine) and (mLine <> -1) then
- MessagePut("mLine, last index line:" && mLine && givLastIndexLine)
- set the foreColor of line givLastIndexLine of field "QuestionTextBox" to givTextRegColor
- set the foreColor of line mLine of field "QuestionTextBox" to givTextHiliteColor
- set givLastIndexLine to mLine
- end if
- set executeOnce to 1
- end if
- end repeat
- MessagePut("after repeat loop, mline is" && mLine)
- set givLastIndexLine to mLine
- set givCurrIndexLine to givLastIndexLine
- set N to the number of lines in field "QuestionTextBox"
- if (givCurrIndexLine > 0) and (givCurrIndexLine < N) then
- AddToSelectList(givCurrIndexLine)
- SetQuestionClipFromTextBox(givCurrIndexLine)
- MessagePut("selecting line" && givCurrIndexLine)
- else
- DisplayFromList()
- end if
- else
- end if
- end
-